ComponentOne Data Source for Entity Framework
C1.LiveLinq Namespace / CompiledQuery Class / Compile Method / Compile<T,TResult>(Expression<Func<T,IIndexedSource<TResult>>>) Method
The type of the parameter that has to be passed in when executing the delegate returned by the Compile method.
The type of TResult in the IIndexedSource<TResult> returned when executing the delegate returned by the Compile method.
The query expression to be compiled.

In This Topic
    Compile<T,TResult>(Expression<Func<T,IIndexedSource<TResult>>>) Method
    In This Topic
    Compiles the query.
    Syntax
    'Declaration
     
    
    Public Overloads Shared Function Compile
        (Of T,TResult)( _
       ByVal query As System.Linq.Expressions.Expression(Of Func(Of T,IIndexedSource(Of TResult))) _
    ) As System.Func(Of T,IIndexedSource(Of TResult))
    public static System.Func<T,IIndexedSource<TResult>> Compile<T,TResult>( 
       System.Linq.Expressions.Expression<Func<T,IIndexedSource<TResult>>> query
    )

    Parameters

    query
    The query expression to be compiled.

    Type Parameters

    T
    The type of the parameter that has to be passed in when executing the delegate returned by the Compile method.
    TResult
    The type of TResult in the IIndexedSource<TResult> returned when executing the delegate returned by the Compile method.

    Return Value

    The delegate to be called to execute the compiled query with particular parameter values.
    See Also